home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr27 / gedsrcb5.zip / GEDSRCH2.BAT < prev    next >
DOS Batch File  |  1995-03-12  |  478b  |  19 lines

  1. @echo off
  2. if "%2"=="" goto space
  3. find /i "%1" <goldcfg.tmp >tempfile
  4. goto nospace
  5. :space
  6. find /i "%1 " <goldcfg.tmp >tempfile
  7. :nospace
  8. copy tempfile+,, >nul
  9. set filename=found.dat
  10. if not exist tempfile set filename=notfound.dat
  11. echo %1 >>%filename%
  12. if "%symbol%"=="░" set newsymbol=▒
  13. if "%symbol%"=="▒" set newsymbol=▓
  14. if "%symbol%"=="▓" set newsymbol=█
  15. if "%symbol%"=="█" set newsymbol=░
  16. set symbol=%newsymbol%
  17. if not "%symbol%"=="░" sendc D
  18. sendc %symbol%
  19.